MAIN FINDINGS

1. Fake news headlines are dominated by political figures and media references. “Video” and “Trump” are the most frequent words, with heavy use of clickbait phrases like “You won’t believe” and “The truth about.” Political bigrams and trigrams such as “White House,” “Black Lives Matter,” and “Fox News” appear frequently. Sports news headlines are dominated by geographical entities and competition names. The most common words include “India,” “Asian,” and “World,” with frequent mentions of tournaments (“Olympics 2024,” “Asian Games”) and top athletes. Unlike fake news, clickbait phrases are absent.

2. Fake news headlines often recycle political narratives, with some five- and six-word phrases recurring multiple times (e.g., “Bill Clinton is a rapist”). Sports headlines, while containing a large number of unique pentagrams and hexagrams, have almost no repeated multi-word phrases.

3. Fake news headlines lean negative; sports headlines are overwhelmingly positive - Fake news shows a higher mean negative sentiment (0.21) than positive (0.17), with “fear” and “surprise” as dominant emotions. In contrast, sports headlines have a much stronger positive sentiment (0.22) than negative (0.11), with “trust” and “anticipation” being the most common emotions. “Joy” is the emotion least present in fake news headlines, “disgust” is the emotion least present in sports headlines.

4. In fake news, “fear” is the emotion most linked with negativity, while “trust” and “anticipation” drive positive sentiment. “Surprise” stands out as the most independently occurring emotion, meaning many headlines evoke surprise without simultaneously expressing any other emotion or sentiment. This suggests that fake news headlines frequently rely on shock value to capture attention. In sports news, positive sentiment is dominant, with “joy” and “trust” frequently appearing together. However, unlike fake news, where specific emotions strongly define sentiment, sports headlines often frame positivity in a more neutral way. Many positive sports headlines do not evoke any of the eight classified emotions, suggesting a neutral use of optimism in sports reporting, where positivity is often conveyed without strong emotional framing.


FAKE NEWS DATASET

Cleaning headlines for analysis, finding frequencies of words and word combinations.

headlines_df <- read_csv("Fake.csv")
## Rows: 23481 Columns: 4
## ── Column specification ──────────────────────────────────────────────────────────
## Delimiter: ","
## chr (4): title, text, subject, date
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
headlines_df$title <- tolower(headlines_df$title)
tidy_headlines <- headlines_df %>%
  unnest_tokens(word, title)
tidy_headlines <- tidy_headlines %>%
  anti_join(stop_words)
## Joining with `by = join_by(word)`
tidy_headlines <- tidy_headlines %>%
  filter(nchar(word) > 1)
tidy_headlines$word <- gsub("[[:punct:]]", "", tidy_headlines$word)

word_freq <- tidy_headlines %>%
  count(word, sort = TRUE)
head(word_freq, 10)
## # A tibble: 10 × 2
##    word          n
##    <chr>     <int>
##  1 video      8477
##  2 trump      7874
##  3 watch      1935
##  4 obama      1901
##  5 hillary    1896
##  6 trumps     1475
##  7 president  1141
##  8 clinton    1001
##  9 breaking    896
## 10 black       894
bigrams <- headlines_df %>%
  unnest_tokens(bigram, title, token = "ngrams", n = 2) %>%
  count(bigram, sort = TRUE)
head(bigrams, 10)
## # A tibble: 10 × 2
##    bigram              n
##    <chr>           <int>
##  1 donald trump      710
##  2 president trump   428
##  3 of the            373
##  4 in the            352
##  5 white house       345
##  6 hillary clinton   343
##  7 trump is          318
##  8 fox news          314
##  9 on the            296
## 10 to be             295
trigrams <- headlines_df %>%
  unnest_tokens(trigram, title, token = "ngrams", n = 3) %>%
  count(trigram, sort = TRUE)
head(trigrams, 10)
## # A tibble: 10 × 2
##    trigram                   n
##    <chr>                 <int>
##  1 black lives matter      160
##  2 boiler room ep          138
##  3 the white house          92
##  4 you won’t believe        75
##  5 on social media          53
##  6 new york times           51
##  7 to vote for              49
##  8 in front of              48
##  9 donald trump jr          47
## 10 supreme court justice    47
quadgrams <- headlines_df %>%
  unnest_tokens(quadgram, title, token = "ngrams", n = 4) %>%
  count(quadgram, sort = TRUE)
head(quadgrams, 10)
## # A tibble: 10 × 2
##    quadgram                          n
##    <chr>                         <int>
##  1 a handed to him                  28
##  2 his a handed to                  26
##  3 to go f ck                       26
##  4 gets his a handed                24
##  5 make america great again         23
##  6 handed to him by                 21
##  7 black lives matter terrorists    20
##  8 go f ck himself                  20
##  9 want you to see                  20
## 10 watch what happens when          20
pentagrams <- headlines_df %>%
  unnest_tokens(pentagram, title, token = "ngrams", n = 5) %>%
  count(pentagram, sort = TRUE)
head(pentagrams, 10)
## # A tibble: 10 × 2
##    pentagram                              n
##    <chr>                              <int>
##  1 his a handed to him                   26
##  2 gets his a handed to                  24
##  3 <NA>                                  22
##  4 to go f ck himself                    20
##  5 a handed to him by                    18
##  6 to shut down free speech              15
##  7 you need to know about                15
##  8 patrick henningsen live with guest    12
##  9 trump to go f ck                      12
## 10 trump gets his a handed               10
hexagrams <- headlines_df %>%
  unnest_tokens(hexagram, title, token = "ngrams", n = 6) %>%
  count(hexagram, sort = TRUE)
head(hexagrams, 10)
## # A tibble: 10 × 2
##    hexagram                                 n
##    <chr>                                <int>
##  1 <NA>                                    80
##  2 gets his a handed to him                24
##  3 his a handed to him by                  16
##  4 trump to go f ck himself                12
##  5 trump gets his a handed to              10
##  6 everything you need to know about        7
##  7 to shut down free speech video           7
##  8 before vince foster was found dead       6
##  9 bill clinton fired his fbi director      6
## 10 climate change is part of obamatrade     6

WORD FREQUENCY VISUALISATIONS

SINGLE WORDS - Word Cloud, Bar chart

set.seed(123)
wordcloud(words = word_freq$word, 
          freq = word_freq$n, 
          min.freq = 2, 
          max.words = 100, 
          random.order = FALSE, 
          rot.per = 0.3, 
          colors = brewer.pal(8, "Dark2"))

top_words <- word_freq %>% slice_max(n, n = 15)
ggplot(top_words, aes(x = reorder(word, n), y = n)) +
  geom_col(fill = "steelblue") +
  coord_flip() +
  labs(title = "Top Words in Fake News Headlines",
       x = "Words", y = "Frequency") +
  theme_minimal()

# ‘Video’ and ‘Trump’ are the two most common words in the fake news headlines dataset, both words occurring at least four times as much as other common words. ‘Video’ is mostly used at the beginning or end of headlines, denoting that the article contains a video (Eg - While Honoring Native American Code Talkers, Trump Called Elizabeth Warren ‘Pocahontas’ (VIDEO)). ‘Tweets’ is another word used in the same way - to denote the content type and source of the news - but this occurs ten times less than ‘video’, suggesting visual elements are ten times more common than tweets for fake news. ‘Watch’ is the third most common word, this is used as a substitute for ‘video’ (Eg - WATCH: Nicolle Wallace Takes Trump To The Woodshed For Backing Pedophile Moore).

Other common words occurring less than 1000 times include ‘breaking’ (another word like ‘video’ preceding headlines used to denote the type of news), ‘black’ and ‘white’. While ‘black’ and ‘white’ both occur roughly the same number of times, ‘black’ is the more distinct connotator of race (Eg - Florida Student In Deep Sh*t After Trying To Sell Black Classmates Into Slavery On Craigslist). ‘White’, on the other hand, is a less racial term, more than a third of its occurences are in relation to the White House.

TWO-WORD PHRASES - Word Cloud, Bar Chart

bigrams %>%
  filter(n > 5) %>% 
  wordcloud2(size = 0.5)
top_bigrams <- bigrams %>% slice_max(n, n = 15)
ggplot(top_bigrams, aes(x = reorder(bigram, n), y = n)) +
  geom_col(fill = "steelblue") +
  coord_flip() +
  labs(title = "Top Bigrams in Fake News Headlines",
       x = "Bigrams", y = "Frequency") +
  theme_minimal()

THREE-WORD PHRASES - Bar Chart, Sankey Network

plot_ngrams <- function(df, title, top_n = 20) {
  df %>%
    as_tibble() %>%  
    arrange(desc(n)) %>%  
    head(top_n) %>%  
    ggplot(aes(x = reorder(!!sym(names(df)[1]), n), y = n)) +  
    geom_col(fill = "steelblue") +
    coord_flip() +
    labs(title = title, x = "N-Gram", y = "Frequency") +
    theme_minimal()
}

plot_ngrams(trigrams, "Top 20 Trigrams")

sankey_data_trigram <- trigrams %>%
  separate(trigram, into = c("word1", "word2", "word3"), sep = " ", remove = FALSE) %>%
  top_n(20, wt = n)
links_trigram <- data.frame(
  source = c(sankey_data_trigram$word1, sankey_data_trigram$word2),
  target = c(sankey_data_trigram$word2, sankey_data_trigram$word3),
  value = rep(sankey_data_trigram$n, 2)
)
nodes_trigram <- data.frame(name = unique(c(links_trigram$source, links_trigram$target)))
links_trigram$source <- match(links_trigram$source, nodes_trigram$name) - 1
links_trigram$target <- match(links_trigram$target, nodes_trigram$name) - 1
sankeyNetwork(Links = links_trigram, Nodes = nodes_trigram, Source = "source", Target = "target",
              Value = "value", NodeID = "name", fontSize = 12, nodeWidth = 30)

The most common trigram is ‘Black Lives Matter’. The BLM social movement was at its peak during the time of this dataset curation. Notably, this phrase is used as a character in headlines instead of as an SEO keyword (Eg - Mark Zuckerberg Stands Strong With Black Lives Matter – Reprimands Racist Facebook Employees). The second most common trigram is an SEO keyword, ‘boiler room ep’, used by one particular website.

FOUR-WORD PHRASES

plot_ngrams(quadgrams, "Top 20 Quadgrams")

sankey_data_quadgram <- quadgrams %>%
  separate(quadgram, into = c("word1", "word2", "word3", "word4"), sep = " ", remove = FALSE) %>%
  top_n(20, wt = n)

links_quadgram <- data.frame(
  source = c(sankey_data_quadgram$word1, sankey_data_quadgram$word2, sankey_data_quadgram$word3),
  target = c(sankey_data_quadgram$word2, sankey_data_quadgram$word3, sankey_data_quadgram$word4),
  value = rep(sankey_data_quadgram$n, 3)
)

nodes_quadgram <- data.frame(name = unique(c(links_quadgram$source, links_quadgram$target)))
links_quadgram$source <- match(links_quadgram$source, nodes_quadgram$name) - 1
links_quadgram$target <- match(links_quadgram$target, nodes_quadgram$name) - 1

sankeyNetwork(Links = links_quadgram, Nodes = nodes_quadgram, Source = "source", Target = "target",
              Value = "value", NodeID = "name", fontSize = 12, nodeWidth = 30)

The most common phrases of four words or more in US fake news headlines all refer to someone handing someone’s ass. As for non-expletive-laden terms, ‘Make America great again’ and ‘Black Lives Matter terrorists’ - two political terms used by Republican-leaning news websites - are the most common.

A few other clickbait phrases are evident here: ‘Watch what happens when’ turns out to be the most common phrase starting with ‘watch’. ‘Want you to see’ is a variation of this phrase (Eg - Here’s The Ted Cruz Ad Starring An Adult Film Star He Doesn’t Want You To See (VIDEO)). ‘You need to know’ and ‘need to know about’ are variations of the same clickbait phrase that occurs around 25 times (Eg - TOP TEN Clinton Scandals That Wikileaks Exposed And That YOU Need To Know About).

FIVE-WORD PHRASES - Network Graph

filtered_ngrams <- pentagrams %>%
  filter(n > 5) %>%
  separate(pentagram, into = c("w1", "w2", "w3", "w4", "w5"), sep = " ", remove = FALSE)

graph <- graph_from_data_frame(filtered_ngrams, directed = FALSE)
## Warning: In `d`, `NA` elements were replaced with string "NA".
ggraph(graph, layout = "fr") +
  geom_edge_link(aes(edge_alpha = n), show.legend = FALSE) +
  geom_node_point(color = "blue", size = 3) +
  geom_node_text(aes(label = name), repel = TRUE, size = 3) +
  theme_minimal()

The number of occurrences go down as we move into pentagrams and hexagrams, but the fact that some 5-word or 6-word phrases occur multiple times in headlines at all could merit further investigation. A few curious examples shown in the above network graph are ‘NFL players disrespecting our flag’ (6 times) and ‘Bill Clinton is a rapist’ (8 times). Examples show these phrases can be seen as having gained currency as recognisable entities (like the BLM social movement) for a short while but then died down.

SIX-WORD PHRASES - Treemap

hexagram_data <- hexagrams %>%
  top_n(20, wt = n) %>%
  separate(hexagram, into = c("w1", "w2", "w3", "w4", "w5", "w6"), sep = " ", remove = FALSE) %>%
  mutate(category = paste(w1, w2, sep = "_"))

treemap(hexagram_data,
        index = "hexagram",
        vSize = "n",
        vColor = "n",
        type = "index",
        palette = "Blues",
        title = "Hexagram Treemap")

‘Everything you need to know’ is a common hexagram, as shown in the treemap. Examples show this is a term used by websites on both side of the political spectrum - 1> THIS ONE PICTURE Tells You Everything You Need To Know About The Muslim Refugee Invasion. 2> This Single Anecdote Tells You EVERYTHING You Need To Know About Trump Voters.

EMOTION DETECTION IN HEADLINES

nrc_lexicon <- read_excel("~/Downloads/NRC-Emotion-Lexicon-v0.92-In105Languages-Nov2017Translations.xlsx")
## New names:
## • `English (en)` -> `English (en)...1`
## • `English (en)` -> `English (en)...22`
nrc_cleaned <- nrc_lexicon %>%
  select(Word = `English (en)...1`, 
         Positive, Negative, Anger, Anticipation, 
         Disgust, Fear, Joy, Sadness, Surprise, Trust)
nrc_cleaned <- nrc_cleaned %>%
  rename(word = Word)

headlines_emotions <- tidy_headlines %>%
  inner_join(nrc_cleaned, by = "word") %>%
  group_by(id = row_number()) %>%
  summarize(across(c(Positive:Trust), sum, na.rm = TRUE))
headlines_emotions_df <- headlines_df %>%
  mutate(id = row_number()) %>%
  left_join(headlines_emotions, by = "id")

headlines_emotions_df %>%
  summarize(across(Positive:Trust, mean, na.rm = TRUE))
## # A tibble: 1 × 10
##   Positive Negative Anger Anticipation Disgust  Fear    Joy Sadness Surprise Trust
##      <dbl>    <dbl> <dbl>        <dbl>   <dbl> <dbl>  <dbl>   <dbl>    <dbl> <dbl>
## 1    0.174    0.214 0.115        0.115  0.0775 0.156 0.0673  0.0920    0.181 0.139

The mean negative sentiment of the fake news dataset is 0.21 and the mean positive sentiment is 0.17, suggesting the negative sentiment is contained more. Surprise (0.18) and fear (0.16) are the emotions most represented. Joy (0.07) is the least represented emotion.

EMOTION VISUALISATION

headlines_emotions_df %>%
  summarize(across(Positive:Trust, sum, na.rm = TRUE)) %>%
  pivot_longer(cols = everything(), names_to = "Emotion", values_to = "Count") %>%
  ggplot(aes(x = reorder(Emotion, -Count), y = Count, fill = Emotion)) +
  geom_bar(stat = "identity") +
  theme_minimal() +
  labs(title = "Overall Emotional Distribution in Headlines",
       x = "Emotion",
       y = "Count") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

headlines_emotions_filtered <- headlines_emotions_df %>%
  filter(rowSums(select(., Positive:Trust) > 0) > 0)
heatmap_data <- as.matrix(headlines_emotions_filtered %>% select(Positive:Trust))
heatmap(heatmap_data, 
        scale = "column", 
        col = heat.colors(256), 
        margins = c(5, 10), 
        xlab = "Emotion", 
        ylab = "Headline",
        main = "Emotion Heatmap of Fake News Headlines")

The heatmap shows how sentiments and emotions often co-occur in the headlines. Trust and anticipation are the most common emotions co-occurring with the positive sentiment (Eg - Mormon tabernacle choir singer quits because singing for Trump would be like singing for Hitler). Fear is the most common emotion co-occurring with the negative sentiment (Eg - Watch: Trump minion makes huge slip about who will pay for infrastructure spending). Surprise is the emotion occurring most independently, or in other words, it has positive scores for the most headlines which do not have scores for any other emotion or sentiment (Eg - Trump gets trashed for justifying Don Jr’s collusion with Russia: ‘That’s politics!’).


SCRAPING HEADLINES FROM WEBSITE ‘THE BRIDGE’

base_url <- "https://thebridge.in/latest"
all_headlines <- c()  

scrape_page <- function(url) {
  page_html <- read_html(url)
  h3_headlines <- page_html %>%
    html_nodes("h3.bd-heading-text") %>%
    html_text(trim = TRUE)
  h4_headlines <- page_html %>%
    html_nodes("h4.bd-heading-text") %>%
    html_text(trim = TRUE)
all_headlines <- c(h3_headlines, h4_headlines)
  
  return(all_headlines)
}

for (i in 1:1000) {
  page_url <- ifelse(i == 1, base_url, paste0(base_url, "/", i))
  cat("Scraping URL:", page_url, "\n")
  headlines <- scrape_page(page_url)
  all_headlines <- c(all_headlines, headlines)
  cat("Scraped page", page_url, "with", length(headlines), "headlines.\n")
}
## Scraping URL: https://thebridge.in/latest 
## Scraped page https://thebridge.in/latest with 12 headlines.
## Scraping URL: https://thebridge.in/latest/2 
## Scraped page https://thebridge.in/latest/2 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/3 
## Scraped page https://thebridge.in/latest/3 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/4 
## Scraped page https://thebridge.in/latest/4 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/5 
## Scraped page https://thebridge.in/latest/5 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/6 
## Scraped page https://thebridge.in/latest/6 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/7 
## Scraped page https://thebridge.in/latest/7 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/8 
## Scraped page https://thebridge.in/latest/8 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/9 
## Scraped page https://thebridge.in/latest/9 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/10 
## Scraped page https://thebridge.in/latest/10 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/11 
## Scraped page https://thebridge.in/latest/11 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/12 
## Scraped page https://thebridge.in/latest/12 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/13 
## Scraped page https://thebridge.in/latest/13 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/14 
## Scraped page https://thebridge.in/latest/14 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/15 
## Scraped page https://thebridge.in/latest/15 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/16 
## Scraped page https://thebridge.in/latest/16 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/17 
## Scraped page https://thebridge.in/latest/17 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/18 
## Scraped page https://thebridge.in/latest/18 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/19 
## Scraped page https://thebridge.in/latest/19 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/20 
## Scraped page https://thebridge.in/latest/20 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/21 
## Scraped page https://thebridge.in/latest/21 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/22 
## Scraped page https://thebridge.in/latest/22 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/23 
## Scraped page https://thebridge.in/latest/23 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/24 
## Scraped page https://thebridge.in/latest/24 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/25 
## Scraped page https://thebridge.in/latest/25 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/26 
## Scraped page https://thebridge.in/latest/26 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/27 
## Scraped page https://thebridge.in/latest/27 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/28 
## Scraped page https://thebridge.in/latest/28 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/29 
## Scraped page https://thebridge.in/latest/29 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/30 
## Scraped page https://thebridge.in/latest/30 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/31 
## Scraped page https://thebridge.in/latest/31 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/32 
## Scraped page https://thebridge.in/latest/32 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/33 
## Scraped page https://thebridge.in/latest/33 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/34 
## Scraped page https://thebridge.in/latest/34 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/35 
## Scraped page https://thebridge.in/latest/35 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/36 
## Scraped page https://thebridge.in/latest/36 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/37 
## Scraped page https://thebridge.in/latest/37 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/38 
## Scraped page https://thebridge.in/latest/38 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/39 
## Scraped page https://thebridge.in/latest/39 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/40 
## Scraped page https://thebridge.in/latest/40 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/41 
## Scraped page https://thebridge.in/latest/41 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/42 
## Scraped page https://thebridge.in/latest/42 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/43 
## Scraped page https://thebridge.in/latest/43 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/44 
## Scraped page https://thebridge.in/latest/44 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/45 
## Scraped page https://thebridge.in/latest/45 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/46 
## Scraped page https://thebridge.in/latest/46 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/47 
## Scraped page https://thebridge.in/latest/47 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/48 
## Scraped page https://thebridge.in/latest/48 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/49 
## Scraped page https://thebridge.in/latest/49 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/50 
## Scraped page https://thebridge.in/latest/50 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/51 
## Scraped page https://thebridge.in/latest/51 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/52 
## Scraped page https://thebridge.in/latest/52 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/53 
## Scraped page https://thebridge.in/latest/53 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/54 
## Scraped page https://thebridge.in/latest/54 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/55 
## Scraped page https://thebridge.in/latest/55 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/56 
## Scraped page https://thebridge.in/latest/56 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/57 
## Scraped page https://thebridge.in/latest/57 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/58 
## Scraped page https://thebridge.in/latest/58 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/59 
## Scraped page https://thebridge.in/latest/59 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/60 
## Scraped page https://thebridge.in/latest/60 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/61 
## Scraped page https://thebridge.in/latest/61 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/62 
## Scraped page https://thebridge.in/latest/62 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/63 
## Scraped page https://thebridge.in/latest/63 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/64 
## Scraped page https://thebridge.in/latest/64 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/65 
## Scraped page https://thebridge.in/latest/65 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/66 
## Scraped page https://thebridge.in/latest/66 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/67 
## Scraped page https://thebridge.in/latest/67 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/68 
## Scraped page https://thebridge.in/latest/68 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/69 
## Scraped page https://thebridge.in/latest/69 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/70 
## Scraped page https://thebridge.in/latest/70 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/71 
## Scraped page https://thebridge.in/latest/71 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/72 
## Scraped page https://thebridge.in/latest/72 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/73 
## Scraped page https://thebridge.in/latest/73 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/74 
## Scraped page https://thebridge.in/latest/74 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/75 
## Scraped page https://thebridge.in/latest/75 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/76 
## Scraped page https://thebridge.in/latest/76 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/77 
## Scraped page https://thebridge.in/latest/77 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/78 
## Scraped page https://thebridge.in/latest/78 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/79 
## Scraped page https://thebridge.in/latest/79 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/80 
## Scraped page https://thebridge.in/latest/80 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/81 
## Scraped page https://thebridge.in/latest/81 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/82 
## Scraped page https://thebridge.in/latest/82 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/83 
## Scraped page https://thebridge.in/latest/83 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/84 
## Scraped page https://thebridge.in/latest/84 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/85 
## Scraped page https://thebridge.in/latest/85 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/86 
## Scraped page https://thebridge.in/latest/86 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/87 
## Scraped page https://thebridge.in/latest/87 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/88 
## Scraped page https://thebridge.in/latest/88 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/89 
## Scraped page https://thebridge.in/latest/89 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/90 
## Scraped page https://thebridge.in/latest/90 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/91 
## Scraped page https://thebridge.in/latest/91 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/92 
## Scraped page https://thebridge.in/latest/92 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/93 
## Scraped page https://thebridge.in/latest/93 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/94 
## Scraped page https://thebridge.in/latest/94 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/95 
## Scraped page https://thebridge.in/latest/95 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/96 
## Scraped page https://thebridge.in/latest/96 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/97 
## Scraped page https://thebridge.in/latest/97 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/98 
## Scraped page https://thebridge.in/latest/98 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/99 
## Scraped page https://thebridge.in/latest/99 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/100 
## Scraped page https://thebridge.in/latest/100 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/101 
## Scraped page https://thebridge.in/latest/101 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/102 
## Scraped page https://thebridge.in/latest/102 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/103 
## Scraped page https://thebridge.in/latest/103 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/104 
## Scraped page https://thebridge.in/latest/104 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/105 
## Scraped page https://thebridge.in/latest/105 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/106 
## Scraped page https://thebridge.in/latest/106 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/107 
## Scraped page https://thebridge.in/latest/107 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/108 
## Scraped page https://thebridge.in/latest/108 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/109 
## Scraped page https://thebridge.in/latest/109 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/110 
## Scraped page https://thebridge.in/latest/110 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/111 
## Scraped page https://thebridge.in/latest/111 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/112 
## Scraped page https://thebridge.in/latest/112 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/113 
## Scraped page https://thebridge.in/latest/113 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/114 
## Scraped page https://thebridge.in/latest/114 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/115 
## Scraped page https://thebridge.in/latest/115 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/116 
## Scraped page https://thebridge.in/latest/116 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/117 
## Scraped page https://thebridge.in/latest/117 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/118 
## Scraped page https://thebridge.in/latest/118 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/119 
## Scraped page https://thebridge.in/latest/119 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/120 
## Scraped page https://thebridge.in/latest/120 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/121 
## Scraped page https://thebridge.in/latest/121 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/122 
## Scraped page https://thebridge.in/latest/122 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/123 
## Scraped page https://thebridge.in/latest/123 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/124 
## Scraped page https://thebridge.in/latest/124 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/125 
## Scraped page https://thebridge.in/latest/125 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/126 
## Scraped page https://thebridge.in/latest/126 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/127 
## Scraped page https://thebridge.in/latest/127 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/128 
## Scraped page https://thebridge.in/latest/128 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/129 
## Scraped page https://thebridge.in/latest/129 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/130 
## Scraped page https://thebridge.in/latest/130 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/131 
## Scraped page https://thebridge.in/latest/131 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/132 
## Scraped page https://thebridge.in/latest/132 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/133 
## Scraped page https://thebridge.in/latest/133 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/134 
## Scraped page https://thebridge.in/latest/134 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/135 
## Scraped page https://thebridge.in/latest/135 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/136 
## Scraped page https://thebridge.in/latest/136 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/137 
## Scraped page https://thebridge.in/latest/137 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/138 
## Scraped page https://thebridge.in/latest/138 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/139 
## Scraped page https://thebridge.in/latest/139 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/140 
## Scraped page https://thebridge.in/latest/140 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/141 
## Scraped page https://thebridge.in/latest/141 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/142 
## Scraped page https://thebridge.in/latest/142 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/143 
## Scraped page https://thebridge.in/latest/143 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/144 
## Scraped page https://thebridge.in/latest/144 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/145 
## Scraped page https://thebridge.in/latest/145 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/146 
## Scraped page https://thebridge.in/latest/146 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/147 
## Scraped page https://thebridge.in/latest/147 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/148 
## Scraped page https://thebridge.in/latest/148 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/149 
## Scraped page https://thebridge.in/latest/149 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/150 
## Scraped page https://thebridge.in/latest/150 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/151 
## Scraped page https://thebridge.in/latest/151 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/152 
## Scraped page https://thebridge.in/latest/152 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/153 
## Scraped page https://thebridge.in/latest/153 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/154 
## Scraped page https://thebridge.in/latest/154 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/155 
## Scraped page https://thebridge.in/latest/155 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/156 
## Scraped page https://thebridge.in/latest/156 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/157 
## Scraped page https://thebridge.in/latest/157 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/158 
## Scraped page https://thebridge.in/latest/158 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/159 
## Scraped page https://thebridge.in/latest/159 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/160 
## Scraped page https://thebridge.in/latest/160 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/161 
## Scraped page https://thebridge.in/latest/161 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/162 
## Scraped page https://thebridge.in/latest/162 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/163 
## Scraped page https://thebridge.in/latest/163 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/164 
## Scraped page https://thebridge.in/latest/164 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/165 
## Scraped page https://thebridge.in/latest/165 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/166 
## Scraped page https://thebridge.in/latest/166 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/167 
## Scraped page https://thebridge.in/latest/167 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/168 
## Scraped page https://thebridge.in/latest/168 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/169 
## Scraped page https://thebridge.in/latest/169 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/170 
## Scraped page https://thebridge.in/latest/170 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/171 
## Scraped page https://thebridge.in/latest/171 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/172 
## Scraped page https://thebridge.in/latest/172 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/173 
## Scraped page https://thebridge.in/latest/173 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/174 
## Scraped page https://thebridge.in/latest/174 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/175 
## Scraped page https://thebridge.in/latest/175 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/176 
## Scraped page https://thebridge.in/latest/176 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/177 
## Scraped page https://thebridge.in/latest/177 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/178 
## Scraped page https://thebridge.in/latest/178 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/179 
## Scraped page https://thebridge.in/latest/179 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/180 
## Scraped page https://thebridge.in/latest/180 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/181 
## Scraped page https://thebridge.in/latest/181 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/182 
## Scraped page https://thebridge.in/latest/182 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/183 
## Scraped page https://thebridge.in/latest/183 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/184 
## Scraped page https://thebridge.in/latest/184 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/185 
## Scraped page https://thebridge.in/latest/185 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/186 
## Scraped page https://thebridge.in/latest/186 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/187 
## Scraped page https://thebridge.in/latest/187 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/188 
## Scraped page https://thebridge.in/latest/188 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/189 
## Scraped page https://thebridge.in/latest/189 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/190 
## Scraped page https://thebridge.in/latest/190 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/191 
## Scraped page https://thebridge.in/latest/191 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/192 
## Scraped page https://thebridge.in/latest/192 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/193 
## Scraped page https://thebridge.in/latest/193 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/194 
## Scraped page https://thebridge.in/latest/194 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/195 
## Scraped page https://thebridge.in/latest/195 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/196 
## Scraped page https://thebridge.in/latest/196 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/197 
## Scraped page https://thebridge.in/latest/197 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/198 
## Scraped page https://thebridge.in/latest/198 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/199 
## Scraped page https://thebridge.in/latest/199 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/200 
## Scraped page https://thebridge.in/latest/200 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/201 
## Scraped page https://thebridge.in/latest/201 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/202 
## Scraped page https://thebridge.in/latest/202 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/203 
## Scraped page https://thebridge.in/latest/203 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/204 
## Scraped page https://thebridge.in/latest/204 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/205 
## Scraped page https://thebridge.in/latest/205 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/206 
## Scraped page https://thebridge.in/latest/206 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/207 
## Scraped page https://thebridge.in/latest/207 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/208 
## Scraped page https://thebridge.in/latest/208 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/209 
## Scraped page https://thebridge.in/latest/209 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/210 
## Scraped page https://thebridge.in/latest/210 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/211 
## Scraped page https://thebridge.in/latest/211 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/212 
## Scraped page https://thebridge.in/latest/212 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/213 
## Scraped page https://thebridge.in/latest/213 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/214 
## Scraped page https://thebridge.in/latest/214 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/215 
## Scraped page https://thebridge.in/latest/215 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/216 
## Scraped page https://thebridge.in/latest/216 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/217 
## Scraped page https://thebridge.in/latest/217 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/218 
## Scraped page https://thebridge.in/latest/218 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/219 
## Scraped page https://thebridge.in/latest/219 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/220 
## Scraped page https://thebridge.in/latest/220 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/221 
## Scraped page https://thebridge.in/latest/221 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/222 
## Scraped page https://thebridge.in/latest/222 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/223 
## Scraped page https://thebridge.in/latest/223 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/224 
## Scraped page https://thebridge.in/latest/224 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/225 
## Scraped page https://thebridge.in/latest/225 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/226 
## Scraped page https://thebridge.in/latest/226 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/227 
## Scraped page https://thebridge.in/latest/227 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/228 
## Scraped page https://thebridge.in/latest/228 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/229 
## Scraped page https://thebridge.in/latest/229 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/230 
## Scraped page https://thebridge.in/latest/230 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/231 
## Scraped page https://thebridge.in/latest/231 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/232 
## Scraped page https://thebridge.in/latest/232 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/233 
## Scraped page https://thebridge.in/latest/233 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/234 
## Scraped page https://thebridge.in/latest/234 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/235 
## Scraped page https://thebridge.in/latest/235 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/236 
## Scraped page https://thebridge.in/latest/236 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/237 
## Scraped page https://thebridge.in/latest/237 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/238 
## Scraped page https://thebridge.in/latest/238 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/239 
## Scraped page https://thebridge.in/latest/239 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/240 
## Scraped page https://thebridge.in/latest/240 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/241 
## Scraped page https://thebridge.in/latest/241 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/242 
## Scraped page https://thebridge.in/latest/242 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/243 
## Scraped page https://thebridge.in/latest/243 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/244 
## Scraped page https://thebridge.in/latest/244 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/245 
## Scraped page https://thebridge.in/latest/245 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/246 
## Scraped page https://thebridge.in/latest/246 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/247 
## Scraped page https://thebridge.in/latest/247 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/248 
## Scraped page https://thebridge.in/latest/248 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/249 
## Scraped page https://thebridge.in/latest/249 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/250 
## Scraped page https://thebridge.in/latest/250 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/251 
## Scraped page https://thebridge.in/latest/251 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/252 
## Scraped page https://thebridge.in/latest/252 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/253 
## Scraped page https://thebridge.in/latest/253 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/254 
## Scraped page https://thebridge.in/latest/254 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/255 
## Scraped page https://thebridge.in/latest/255 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/256 
## Scraped page https://thebridge.in/latest/256 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/257 
## Scraped page https://thebridge.in/latest/257 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/258 
## Scraped page https://thebridge.in/latest/258 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/259 
## Scraped page https://thebridge.in/latest/259 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/260 
## Scraped page https://thebridge.in/latest/260 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/261 
## Scraped page https://thebridge.in/latest/261 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/262 
## Scraped page https://thebridge.in/latest/262 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/263 
## Scraped page https://thebridge.in/latest/263 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/264 
## Scraped page https://thebridge.in/latest/264 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/265 
## Scraped page https://thebridge.in/latest/265 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/266 
## Scraped page https://thebridge.in/latest/266 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/267 
## Scraped page https://thebridge.in/latest/267 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/268 
## Scraped page https://thebridge.in/latest/268 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/269 
## Scraped page https://thebridge.in/latest/269 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/270 
## Scraped page https://thebridge.in/latest/270 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/271 
## Scraped page https://thebridge.in/latest/271 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/272 
## Scraped page https://thebridge.in/latest/272 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/273 
## Scraped page https://thebridge.in/latest/273 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/274 
## Scraped page https://thebridge.in/latest/274 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/275 
## Scraped page https://thebridge.in/latest/275 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/276 
## Scraped page https://thebridge.in/latest/276 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/277 
## Scraped page https://thebridge.in/latest/277 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/278 
## Scraped page https://thebridge.in/latest/278 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/279 
## Scraped page https://thebridge.in/latest/279 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/280 
## Scraped page https://thebridge.in/latest/280 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/281 
## Scraped page https://thebridge.in/latest/281 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/282 
## Scraped page https://thebridge.in/latest/282 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/283 
## Scraped page https://thebridge.in/latest/283 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/284 
## Scraped page https://thebridge.in/latest/284 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/285 
## Scraped page https://thebridge.in/latest/285 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/286 
## Scraped page https://thebridge.in/latest/286 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/287 
## Scraped page https://thebridge.in/latest/287 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/288 
## Scraped page https://thebridge.in/latest/288 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/289 
## Scraped page https://thebridge.in/latest/289 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/290 
## Scraped page https://thebridge.in/latest/290 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/291 
## Scraped page https://thebridge.in/latest/291 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/292 
## Scraped page https://thebridge.in/latest/292 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/293 
## Scraped page https://thebridge.in/latest/293 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/294 
## Scraped page https://thebridge.in/latest/294 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/295 
## Scraped page https://thebridge.in/latest/295 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/296 
## Scraped page https://thebridge.in/latest/296 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/297 
## Scraped page https://thebridge.in/latest/297 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/298 
## Scraped page https://thebridge.in/latest/298 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/299 
## Scraped page https://thebridge.in/latest/299 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/300 
## Scraped page https://thebridge.in/latest/300 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/301 
## Scraped page https://thebridge.in/latest/301 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/302 
## Scraped page https://thebridge.in/latest/302 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/303 
## Scraped page https://thebridge.in/latest/303 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/304 
## Scraped page https://thebridge.in/latest/304 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/305 
## Scraped page https://thebridge.in/latest/305 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/306 
## Scraped page https://thebridge.in/latest/306 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/307 
## Scraped page https://thebridge.in/latest/307 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/308 
## Scraped page https://thebridge.in/latest/308 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/309 
## Scraped page https://thebridge.in/latest/309 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/310 
## Scraped page https://thebridge.in/latest/310 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/311 
## Scraped page https://thebridge.in/latest/311 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/312 
## Scraped page https://thebridge.in/latest/312 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/313 
## Scraped page https://thebridge.in/latest/313 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/314 
## Scraped page https://thebridge.in/latest/314 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/315 
## Scraped page https://thebridge.in/latest/315 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/316 
## Scraped page https://thebridge.in/latest/316 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/317 
## Scraped page https://thebridge.in/latest/317 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/318 
## Scraped page https://thebridge.in/latest/318 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/319 
## Scraped page https://thebridge.in/latest/319 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/320 
## Scraped page https://thebridge.in/latest/320 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/321 
## Scraped page https://thebridge.in/latest/321 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/322 
## Scraped page https://thebridge.in/latest/322 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/323 
## Scraped page https://thebridge.in/latest/323 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/324 
## Scraped page https://thebridge.in/latest/324 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/325 
## Scraped page https://thebridge.in/latest/325 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/326 
## Scraped page https://thebridge.in/latest/326 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/327 
## Scraped page https://thebridge.in/latest/327 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/328 
## Scraped page https://thebridge.in/latest/328 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/329 
## Scraped page https://thebridge.in/latest/329 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/330 
## Scraped page https://thebridge.in/latest/330 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/331 
## Scraped page https://thebridge.in/latest/331 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/332 
## Scraped page https://thebridge.in/latest/332 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/333 
## Scraped page https://thebridge.in/latest/333 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/334 
## Scraped page https://thebridge.in/latest/334 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/335 
## Scraped page https://thebridge.in/latest/335 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/336 
## Scraped page https://thebridge.in/latest/336 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/337 
## Scraped page https://thebridge.in/latest/337 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/338 
## Scraped page https://thebridge.in/latest/338 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/339 
## Scraped page https://thebridge.in/latest/339 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/340 
## Scraped page https://thebridge.in/latest/340 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/341 
## Scraped page https://thebridge.in/latest/341 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/342 
## Scraped page https://thebridge.in/latest/342 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/343 
## Scraped page https://thebridge.in/latest/343 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/344 
## Scraped page https://thebridge.in/latest/344 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/345 
## Scraped page https://thebridge.in/latest/345 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/346 
## Scraped page https://thebridge.in/latest/346 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/347 
## Scraped page https://thebridge.in/latest/347 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/348 
## Scraped page https://thebridge.in/latest/348 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/349 
## Scraped page https://thebridge.in/latest/349 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/350 
## Scraped page https://thebridge.in/latest/350 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/351 
## Scraped page https://thebridge.in/latest/351 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/352 
## Scraped page https://thebridge.in/latest/352 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/353 
## Scraped page https://thebridge.in/latest/353 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/354 
## Scraped page https://thebridge.in/latest/354 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/355 
## Scraped page https://thebridge.in/latest/355 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/356 
## Scraped page https://thebridge.in/latest/356 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/357 
## Scraped page https://thebridge.in/latest/357 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/358 
## Scraped page https://thebridge.in/latest/358 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/359 
## Scraped page https://thebridge.in/latest/359 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/360 
## Scraped page https://thebridge.in/latest/360 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/361 
## Scraped page https://thebridge.in/latest/361 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/362 
## Scraped page https://thebridge.in/latest/362 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/363 
## Scraped page https://thebridge.in/latest/363 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/364 
## Scraped page https://thebridge.in/latest/364 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/365 
## Scraped page https://thebridge.in/latest/365 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/366 
## Scraped page https://thebridge.in/latest/366 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/367 
## Scraped page https://thebridge.in/latest/367 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/368 
## Scraped page https://thebridge.in/latest/368 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/369 
## Scraped page https://thebridge.in/latest/369 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/370 
## Scraped page https://thebridge.in/latest/370 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/371 
## Scraped page https://thebridge.in/latest/371 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/372 
## Scraped page https://thebridge.in/latest/372 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/373 
## Scraped page https://thebridge.in/latest/373 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/374 
## Scraped page https://thebridge.in/latest/374 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/375 
## Scraped page https://thebridge.in/latest/375 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/376 
## Scraped page https://thebridge.in/latest/376 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/377 
## Scraped page https://thebridge.in/latest/377 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/378 
## Scraped page https://thebridge.in/latest/378 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/379 
## Scraped page https://thebridge.in/latest/379 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/380 
## Scraped page https://thebridge.in/latest/380 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/381 
## Scraped page https://thebridge.in/latest/381 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/382 
## Scraped page https://thebridge.in/latest/382 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/383 
## Scraped page https://thebridge.in/latest/383 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/384 
## Scraped page https://thebridge.in/latest/384 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/385 
## Scraped page https://thebridge.in/latest/385 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/386 
## Scraped page https://thebridge.in/latest/386 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/387 
## Scraped page https://thebridge.in/latest/387 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/388 
## Scraped page https://thebridge.in/latest/388 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/389 
## Scraped page https://thebridge.in/latest/389 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/390 
## Scraped page https://thebridge.in/latest/390 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/391 
## Scraped page https://thebridge.in/latest/391 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/392 
## Scraped page https://thebridge.in/latest/392 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/393 
## Scraped page https://thebridge.in/latest/393 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/394 
## Scraped page https://thebridge.in/latest/394 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/395 
## Scraped page https://thebridge.in/latest/395 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/396 
## Scraped page https://thebridge.in/latest/396 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/397 
## Scraped page https://thebridge.in/latest/397 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/398 
## Scraped page https://thebridge.in/latest/398 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/399 
## Scraped page https://thebridge.in/latest/399 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/400 
## Scraped page https://thebridge.in/latest/400 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/401 
## Scraped page https://thebridge.in/latest/401 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/402 
## Scraped page https://thebridge.in/latest/402 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/403 
## Scraped page https://thebridge.in/latest/403 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/404 
## Scraped page https://thebridge.in/latest/404 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/405 
## Scraped page https://thebridge.in/latest/405 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/406 
## Scraped page https://thebridge.in/latest/406 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/407 
## Scraped page https://thebridge.in/latest/407 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/408 
## Scraped page https://thebridge.in/latest/408 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/409 
## Scraped page https://thebridge.in/latest/409 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/410 
## Scraped page https://thebridge.in/latest/410 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/411 
## Scraped page https://thebridge.in/latest/411 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/412 
## Scraped page https://thebridge.in/latest/412 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/413 
## Scraped page https://thebridge.in/latest/413 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/414 
## Scraped page https://thebridge.in/latest/414 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/415 
## Scraped page https://thebridge.in/latest/415 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/416 
## Scraped page https://thebridge.in/latest/416 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/417 
## Scraped page https://thebridge.in/latest/417 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/418 
## Scraped page https://thebridge.in/latest/418 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/419 
## Scraped page https://thebridge.in/latest/419 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/420 
## Scraped page https://thebridge.in/latest/420 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/421 
## Scraped page https://thebridge.in/latest/421 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/422 
## Scraped page https://thebridge.in/latest/422 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/423 
## Scraped page https://thebridge.in/latest/423 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/424 
## Scraped page https://thebridge.in/latest/424 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/425 
## Scraped page https://thebridge.in/latest/425 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/426 
## Scraped page https://thebridge.in/latest/426 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/427 
## Scraped page https://thebridge.in/latest/427 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/428 
## Scraped page https://thebridge.in/latest/428 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/429 
## Scraped page https://thebridge.in/latest/429 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/430 
## Scraped page https://thebridge.in/latest/430 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/431 
## Scraped page https://thebridge.in/latest/431 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/432 
## Scraped page https://thebridge.in/latest/432 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/433 
## Scraped page https://thebridge.in/latest/433 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/434 
## Scraped page https://thebridge.in/latest/434 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/435 
## Scraped page https://thebridge.in/latest/435 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/436 
## Scraped page https://thebridge.in/latest/436 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/437 
## Scraped page https://thebridge.in/latest/437 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/438 
## Scraped page https://thebridge.in/latest/438 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/439 
## Scraped page https://thebridge.in/latest/439 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/440 
## Scraped page https://thebridge.in/latest/440 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/441 
## Scraped page https://thebridge.in/latest/441 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/442 
## Scraped page https://thebridge.in/latest/442 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/443 
## Scraped page https://thebridge.in/latest/443 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/444 
## Scraped page https://thebridge.in/latest/444 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/445 
## Scraped page https://thebridge.in/latest/445 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/446 
## Scraped page https://thebridge.in/latest/446 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/447 
## Scraped page https://thebridge.in/latest/447 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/448 
## Scraped page https://thebridge.in/latest/448 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/449 
## Scraped page https://thebridge.in/latest/449 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/450 
## Scraped page https://thebridge.in/latest/450 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/451 
## Scraped page https://thebridge.in/latest/451 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/452 
## Scraped page https://thebridge.in/latest/452 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/453 
## Scraped page https://thebridge.in/latest/453 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/454 
## Scraped page https://thebridge.in/latest/454 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/455 
## Scraped page https://thebridge.in/latest/455 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/456 
## Scraped page https://thebridge.in/latest/456 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/457 
## Scraped page https://thebridge.in/latest/457 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/458 
## Scraped page https://thebridge.in/latest/458 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/459 
## Scraped page https://thebridge.in/latest/459 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/460 
## Scraped page https://thebridge.in/latest/460 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/461 
## Scraped page https://thebridge.in/latest/461 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/462 
## Scraped page https://thebridge.in/latest/462 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/463 
## Scraped page https://thebridge.in/latest/463 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/464 
## Scraped page https://thebridge.in/latest/464 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/465 
## Scraped page https://thebridge.in/latest/465 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/466 
## Scraped page https://thebridge.in/latest/466 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/467 
## Scraped page https://thebridge.in/latest/467 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/468 
## Scraped page https://thebridge.in/latest/468 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/469 
## Scraped page https://thebridge.in/latest/469 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/470 
## Scraped page https://thebridge.in/latest/470 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/471 
## Scraped page https://thebridge.in/latest/471 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/472 
## Scraped page https://thebridge.in/latest/472 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/473 
## Scraped page https://thebridge.in/latest/473 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/474 
## Scraped page https://thebridge.in/latest/474 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/475 
## Scraped page https://thebridge.in/latest/475 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/476 
## Scraped page https://thebridge.in/latest/476 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/477 
## Scraped page https://thebridge.in/latest/477 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/478 
## Scraped page https://thebridge.in/latest/478 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/479 
## Scraped page https://thebridge.in/latest/479 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/480 
## Scraped page https://thebridge.in/latest/480 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/481 
## Scraped page https://thebridge.in/latest/481 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/482 
## Scraped page https://thebridge.in/latest/482 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/483 
## Scraped page https://thebridge.in/latest/483 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/484 
## Scraped page https://thebridge.in/latest/484 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/485 
## Scraped page https://thebridge.in/latest/485 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/486 
## Scraped page https://thebridge.in/latest/486 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/487 
## Scraped page https://thebridge.in/latest/487 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/488 
## Scraped page https://thebridge.in/latest/488 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/489 
## Scraped page https://thebridge.in/latest/489 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/490 
## Scraped page https://thebridge.in/latest/490 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/491 
## Scraped page https://thebridge.in/latest/491 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/492 
## Scraped page https://thebridge.in/latest/492 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/493 
## Scraped page https://thebridge.in/latest/493 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/494 
## Scraped page https://thebridge.in/latest/494 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/495 
## Scraped page https://thebridge.in/latest/495 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/496 
## Scraped page https://thebridge.in/latest/496 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/497 
## Scraped page https://thebridge.in/latest/497 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/498 
## Scraped page https://thebridge.in/latest/498 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/499 
## Scraped page https://thebridge.in/latest/499 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/500 
## Scraped page https://thebridge.in/latest/500 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/501 
## Scraped page https://thebridge.in/latest/501 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/502 
## Scraped page https://thebridge.in/latest/502 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/503 
## Scraped page https://thebridge.in/latest/503 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/504 
## Scraped page https://thebridge.in/latest/504 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/505 
## Scraped page https://thebridge.in/latest/505 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/506 
## Scraped page https://thebridge.in/latest/506 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/507 
## Scraped page https://thebridge.in/latest/507 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/508 
## Scraped page https://thebridge.in/latest/508 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/509 
## Scraped page https://thebridge.in/latest/509 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/510 
## Scraped page https://thebridge.in/latest/510 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/511 
## Scraped page https://thebridge.in/latest/511 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/512 
## Scraped page https://thebridge.in/latest/512 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/513 
## Scraped page https://thebridge.in/latest/513 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/514 
## Scraped page https://thebridge.in/latest/514 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/515 
## Scraped page https://thebridge.in/latest/515 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/516 
## Scraped page https://thebridge.in/latest/516 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/517 
## Scraped page https://thebridge.in/latest/517 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/518 
## Scraped page https://thebridge.in/latest/518 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/519 
## Scraped page https://thebridge.in/latest/519 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/520 
## Scraped page https://thebridge.in/latest/520 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/521 
## Scraped page https://thebridge.in/latest/521 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/522 
## Scraped page https://thebridge.in/latest/522 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/523 
## Scraped page https://thebridge.in/latest/523 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/524 
## Scraped page https://thebridge.in/latest/524 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/525 
## Scraped page https://thebridge.in/latest/525 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/526 
## Scraped page https://thebridge.in/latest/526 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/527 
## Scraped page https://thebridge.in/latest/527 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/528 
## Scraped page https://thebridge.in/latest/528 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/529 
## Scraped page https://thebridge.in/latest/529 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/530 
## Scraped page https://thebridge.in/latest/530 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/531 
## Scraped page https://thebridge.in/latest/531 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/532 
## Scraped page https://thebridge.in/latest/532 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/533 
## Scraped page https://thebridge.in/latest/533 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/534 
## Scraped page https://thebridge.in/latest/534 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/535 
## Scraped page https://thebridge.in/latest/535 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/536 
## Scraped page https://thebridge.in/latest/536 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/537 
## Scraped page https://thebridge.in/latest/537 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/538 
## Scraped page https://thebridge.in/latest/538 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/539 
## Scraped page https://thebridge.in/latest/539 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/540 
## Scraped page https://thebridge.in/latest/540 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/541 
## Scraped page https://thebridge.in/latest/541 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/542 
## Scraped page https://thebridge.in/latest/542 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/543 
## Scraped page https://thebridge.in/latest/543 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/544 
## Scraped page https://thebridge.in/latest/544 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/545 
## Scraped page https://thebridge.in/latest/545 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/546 
## Scraped page https://thebridge.in/latest/546 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/547 
## Scraped page https://thebridge.in/latest/547 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/548 
## Scraped page https://thebridge.in/latest/548 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/549 
## Scraped page https://thebridge.in/latest/549 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/550 
## Scraped page https://thebridge.in/latest/550 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/551 
## Scraped page https://thebridge.in/latest/551 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/552 
## Scraped page https://thebridge.in/latest/552 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/553 
## Scraped page https://thebridge.in/latest/553 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/554 
## Scraped page https://thebridge.in/latest/554 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/555 
## Scraped page https://thebridge.in/latest/555 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/556 
## Scraped page https://thebridge.in/latest/556 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/557 
## Scraped page https://thebridge.in/latest/557 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/558 
## Scraped page https://thebridge.in/latest/558 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/559 
## Scraped page https://thebridge.in/latest/559 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/560 
## Scraped page https://thebridge.in/latest/560 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/561 
## Scraped page https://thebridge.in/latest/561 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/562 
## Scraped page https://thebridge.in/latest/562 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/563 
## Scraped page https://thebridge.in/latest/563 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/564 
## Scraped page https://thebridge.in/latest/564 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/565 
## Scraped page https://thebridge.in/latest/565 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/566 
## Scraped page https://thebridge.in/latest/566 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/567 
## Scraped page https://thebridge.in/latest/567 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/568 
## Scraped page https://thebridge.in/latest/568 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/569 
## Scraped page https://thebridge.in/latest/569 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/570 
## Scraped page https://thebridge.in/latest/570 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/571 
## Scraped page https://thebridge.in/latest/571 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/572 
## Scraped page https://thebridge.in/latest/572 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/573 
## Scraped page https://thebridge.in/latest/573 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/574 
## Scraped page https://thebridge.in/latest/574 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/575 
## Scraped page https://thebridge.in/latest/575 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/576 
## Scraped page https://thebridge.in/latest/576 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/577 
## Scraped page https://thebridge.in/latest/577 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/578 
## Scraped page https://thebridge.in/latest/578 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/579 
## Scraped page https://thebridge.in/latest/579 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/580 
## Scraped page https://thebridge.in/latest/580 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/581 
## Scraped page https://thebridge.in/latest/581 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/582 
## Scraped page https://thebridge.in/latest/582 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/583 
## Scraped page https://thebridge.in/latest/583 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/584 
## Scraped page https://thebridge.in/latest/584 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/585 
## Scraped page https://thebridge.in/latest/585 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/586 
## Scraped page https://thebridge.in/latest/586 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/587 
## Scraped page https://thebridge.in/latest/587 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/588 
## Scraped page https://thebridge.in/latest/588 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/589 
## Scraped page https://thebridge.in/latest/589 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/590 
## Scraped page https://thebridge.in/latest/590 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/591 
## Scraped page https://thebridge.in/latest/591 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/592 
## Scraped page https://thebridge.in/latest/592 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/593 
## Scraped page https://thebridge.in/latest/593 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/594 
## Scraped page https://thebridge.in/latest/594 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/595 
## Scraped page https://thebridge.in/latest/595 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/596 
## Scraped page https://thebridge.in/latest/596 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/597 
## Scraped page https://thebridge.in/latest/597 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/598 
## Scraped page https://thebridge.in/latest/598 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/599 
## Scraped page https://thebridge.in/latest/599 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/600 
## Scraped page https://thebridge.in/latest/600 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/601 
## Scraped page https://thebridge.in/latest/601 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/602 
## Scraped page https://thebridge.in/latest/602 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/603 
## Scraped page https://thebridge.in/latest/603 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/604 
## Scraped page https://thebridge.in/latest/604 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/605 
## Scraped page https://thebridge.in/latest/605 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/606 
## Scraped page https://thebridge.in/latest/606 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/607 
## Scraped page https://thebridge.in/latest/607 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/608 
## Scraped page https://thebridge.in/latest/608 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/609 
## Scraped page https://thebridge.in/latest/609 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/610 
## Scraped page https://thebridge.in/latest/610 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/611 
## Scraped page https://thebridge.in/latest/611 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/612 
## Scraped page https://thebridge.in/latest/612 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/613 
## Scraped page https://thebridge.in/latest/613 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/614 
## Scraped page https://thebridge.in/latest/614 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/615 
## Scraped page https://thebridge.in/latest/615 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/616 
## Scraped page https://thebridge.in/latest/616 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/617 
## Scraped page https://thebridge.in/latest/617 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/618 
## Scraped page https://thebridge.in/latest/618 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/619 
## Scraped page https://thebridge.in/latest/619 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/620 
## Scraped page https://thebridge.in/latest/620 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/621 
## Scraped page https://thebridge.in/latest/621 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/622 
## Scraped page https://thebridge.in/latest/622 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/623 
## Scraped page https://thebridge.in/latest/623 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/624 
## Scraped page https://thebridge.in/latest/624 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/625 
## Scraped page https://thebridge.in/latest/625 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/626 
## Scraped page https://thebridge.in/latest/626 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/627 
## Scraped page https://thebridge.in/latest/627 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/628 
## Scraped page https://thebridge.in/latest/628 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/629 
## Scraped page https://thebridge.in/latest/629 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/630 
## Scraped page https://thebridge.in/latest/630 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/631 
## Scraped page https://thebridge.in/latest/631 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/632 
## Scraped page https://thebridge.in/latest/632 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/633 
## Scraped page https://thebridge.in/latest/633 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/634 
## Scraped page https://thebridge.in/latest/634 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/635 
## Scraped page https://thebridge.in/latest/635 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/636 
## Scraped page https://thebridge.in/latest/636 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/637 
## Scraped page https://thebridge.in/latest/637 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/638 
## Scraped page https://thebridge.in/latest/638 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/639 
## Scraped page https://thebridge.in/latest/639 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/640 
## Scraped page https://thebridge.in/latest/640 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/641 
## Scraped page https://thebridge.in/latest/641 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/642 
## Scraped page https://thebridge.in/latest/642 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/643 
## Scraped page https://thebridge.in/latest/643 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/644 
## Scraped page https://thebridge.in/latest/644 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/645 
## Scraped page https://thebridge.in/latest/645 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/646 
## Scraped page https://thebridge.in/latest/646 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/647 
## Scraped page https://thebridge.in/latest/647 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/648 
## Scraped page https://thebridge.in/latest/648 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/649 
## Scraped page https://thebridge.in/latest/649 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/650 
## Scraped page https://thebridge.in/latest/650 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/651 
## Scraped page https://thebridge.in/latest/651 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/652 
## Scraped page https://thebridge.in/latest/652 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/653 
## Scraped page https://thebridge.in/latest/653 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/654 
## Scraped page https://thebridge.in/latest/654 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/655 
## Scraped page https://thebridge.in/latest/655 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/656 
## Scraped page https://thebridge.in/latest/656 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/657 
## Scraped page https://thebridge.in/latest/657 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/658 
## Scraped page https://thebridge.in/latest/658 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/659 
## Scraped page https://thebridge.in/latest/659 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/660 
## Scraped page https://thebridge.in/latest/660 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/661 
## Scraped page https://thebridge.in/latest/661 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/662 
## Scraped page https://thebridge.in/latest/662 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/663 
## Scraped page https://thebridge.in/latest/663 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/664 
## Scraped page https://thebridge.in/latest/664 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/665 
## Scraped page https://thebridge.in/latest/665 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/666 
## Scraped page https://thebridge.in/latest/666 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/667 
## Scraped page https://thebridge.in/latest/667 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/668 
## Scraped page https://thebridge.in/latest/668 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/669 
## Scraped page https://thebridge.in/latest/669 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/670 
## Scraped page https://thebridge.in/latest/670 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/671 
## Scraped page https://thebridge.in/latest/671 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/672 
## Scraped page https://thebridge.in/latest/672 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/673 
## Scraped page https://thebridge.in/latest/673 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/674 
## Scraped page https://thebridge.in/latest/674 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/675 
## Scraped page https://thebridge.in/latest/675 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/676 
## Scraped page https://thebridge.in/latest/676 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/677 
## Scraped page https://thebridge.in/latest/677 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/678 
## Scraped page https://thebridge.in/latest/678 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/679 
## Scraped page https://thebridge.in/latest/679 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/680 
## Scraped page https://thebridge.in/latest/680 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/681 
## Scraped page https://thebridge.in/latest/681 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/682 
## Scraped page https://thebridge.in/latest/682 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/683 
## Scraped page https://thebridge.in/latest/683 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/684 
## Scraped page https://thebridge.in/latest/684 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/685 
## Scraped page https://thebridge.in/latest/685 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/686 
## Scraped page https://thebridge.in/latest/686 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/687 
## Scraped page https://thebridge.in/latest/687 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/688 
## Scraped page https://thebridge.in/latest/688 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/689 
## Scraped page https://thebridge.in/latest/689 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/690 
## Scraped page https://thebridge.in/latest/690 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/691 
## Scraped page https://thebridge.in/latest/691 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/692 
## Scraped page https://thebridge.in/latest/692 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/693 
## Scraped page https://thebridge.in/latest/693 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/694 
## Scraped page https://thebridge.in/latest/694 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/695 
## Scraped page https://thebridge.in/latest/695 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/696 
## Scraped page https://thebridge.in/latest/696 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/697 
## Scraped page https://thebridge.in/latest/697 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/698 
## Scraped page https://thebridge.in/latest/698 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/699 
## Scraped page https://thebridge.in/latest/699 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/700 
## Scraped page https://thebridge.in/latest/700 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/701 
## Scraped page https://thebridge.in/latest/701 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/702 
## Scraped page https://thebridge.in/latest/702 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/703 
## Scraped page https://thebridge.in/latest/703 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/704 
## Scraped page https://thebridge.in/latest/704 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/705 
## Scraped page https://thebridge.in/latest/705 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/706 
## Scraped page https://thebridge.in/latest/706 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/707 
## Scraped page https://thebridge.in/latest/707 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/708 
## Scraped page https://thebridge.in/latest/708 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/709 
## Scraped page https://thebridge.in/latest/709 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/710 
## Scraped page https://thebridge.in/latest/710 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/711 
## Scraped page https://thebridge.in/latest/711 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/712 
## Scraped page https://thebridge.in/latest/712 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/713 
## Scraped page https://thebridge.in/latest/713 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/714 
## Scraped page https://thebridge.in/latest/714 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/715 
## Scraped page https://thebridge.in/latest/715 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/716 
## Scraped page https://thebridge.in/latest/716 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/717 
## Scraped page https://thebridge.in/latest/717 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/718 
## Scraped page https://thebridge.in/latest/718 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/719 
## Scraped page https://thebridge.in/latest/719 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/720 
## Scraped page https://thebridge.in/latest/720 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/721 
## Scraped page https://thebridge.in/latest/721 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/722 
## Scraped page https://thebridge.in/latest/722 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/723 
## Scraped page https://thebridge.in/latest/723 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/724 
## Scraped page https://thebridge.in/latest/724 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/725 
## Scraped page https://thebridge.in/latest/725 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/726 
## Scraped page https://thebridge.in/latest/726 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/727 
## Scraped page https://thebridge.in/latest/727 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/728 
## Scraped page https://thebridge.in/latest/728 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/729 
## Scraped page https://thebridge.in/latest/729 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/730 
## Scraped page https://thebridge.in/latest/730 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/731 
## Scraped page https://thebridge.in/latest/731 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/732 
## Scraped page https://thebridge.in/latest/732 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/733 
## Scraped page https://thebridge.in/latest/733 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/734 
## Scraped page https://thebridge.in/latest/734 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/735 
## Scraped page https://thebridge.in/latest/735 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/736 
## Scraped page https://thebridge.in/latest/736 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/737 
## Scraped page https://thebridge.in/latest/737 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/738 
## Scraped page https://thebridge.in/latest/738 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/739 
## Scraped page https://thebridge.in/latest/739 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/740 
## Scraped page https://thebridge.in/latest/740 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/741 
## Scraped page https://thebridge.in/latest/741 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/742 
## Scraped page https://thebridge.in/latest/742 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/743 
## Scraped page https://thebridge.in/latest/743 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/744 
## Scraped page https://thebridge.in/latest/744 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/745 
## Scraped page https://thebridge.in/latest/745 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/746 
## Scraped page https://thebridge.in/latest/746 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/747 
## Scraped page https://thebridge.in/latest/747 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/748 
## Scraped page https://thebridge.in/latest/748 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/749 
## Scraped page https://thebridge.in/latest/749 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/750 
## Scraped page https://thebridge.in/latest/750 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/751 
## Scraped page https://thebridge.in/latest/751 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/752 
## Scraped page https://thebridge.in/latest/752 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/753 
## Scraped page https://thebridge.in/latest/753 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/754 
## Scraped page https://thebridge.in/latest/754 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/755 
## Scraped page https://thebridge.in/latest/755 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/756 
## Scraped page https://thebridge.in/latest/756 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/757 
## Scraped page https://thebridge.in/latest/757 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/758 
## Scraped page https://thebridge.in/latest/758 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/759 
## Scraped page https://thebridge.in/latest/759 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/760 
## Scraped page https://thebridge.in/latest/760 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/761 
## Scraped page https://thebridge.in/latest/761 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/762 
## Scraped page https://thebridge.in/latest/762 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/763 
## Scraped page https://thebridge.in/latest/763 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/764 
## Scraped page https://thebridge.in/latest/764 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/765 
## Scraped page https://thebridge.in/latest/765 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/766 
## Scraped page https://thebridge.in/latest/766 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/767 
## Scraped page https://thebridge.in/latest/767 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/768 
## Scraped page https://thebridge.in/latest/768 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/769 
## Scraped page https://thebridge.in/latest/769 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/770 
## Scraped page https://thebridge.in/latest/770 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/771 
## Scraped page https://thebridge.in/latest/771 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/772 
## Scraped page https://thebridge.in/latest/772 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/773 
## Scraped page https://thebridge.in/latest/773 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/774 
## Scraped page https://thebridge.in/latest/774 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/775 
## Scraped page https://thebridge.in/latest/775 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/776 
## Scraped page https://thebridge.in/latest/776 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/777 
## Scraped page https://thebridge.in/latest/777 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/778 
## Scraped page https://thebridge.in/latest/778 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/779 
## Scraped page https://thebridge.in/latest/779 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/780 
## Scraped page https://thebridge.in/latest/780 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/781 
## Scraped page https://thebridge.in/latest/781 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/782 
## Scraped page https://thebridge.in/latest/782 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/783 
## Scraped page https://thebridge.in/latest/783 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/784 
## Scraped page https://thebridge.in/latest/784 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/785 
## Scraped page https://thebridge.in/latest/785 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/786 
## Scraped page https://thebridge.in/latest/786 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/787 
## Scraped page https://thebridge.in/latest/787 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/788 
## Scraped page https://thebridge.in/latest/788 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/789 
## Scraped page https://thebridge.in/latest/789 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/790 
## Scraped page https://thebridge.in/latest/790 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/791 
## Scraped page https://thebridge.in/latest/791 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/792 
## Scraped page https://thebridge.in/latest/792 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/793 
## Scraped page https://thebridge.in/latest/793 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/794 
## Scraped page https://thebridge.in/latest/794 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/795 
## Scraped page https://thebridge.in/latest/795 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/796 
## Scraped page https://thebridge.in/latest/796 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/797 
## Scraped page https://thebridge.in/latest/797 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/798 
## Scraped page https://thebridge.in/latest/798 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/799 
## Scraped page https://thebridge.in/latest/799 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/800 
## Scraped page https://thebridge.in/latest/800 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/801 
## Scraped page https://thebridge.in/latest/801 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/802 
## Scraped page https://thebridge.in/latest/802 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/803 
## Scraped page https://thebridge.in/latest/803 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/804 
## Scraped page https://thebridge.in/latest/804 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/805 
## Scraped page https://thebridge.in/latest/805 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/806 
## Scraped page https://thebridge.in/latest/806 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/807 
## Scraped page https://thebridge.in/latest/807 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/808 
## Scraped page https://thebridge.in/latest/808 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/809 
## Scraped page https://thebridge.in/latest/809 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/810 
## Scraped page https://thebridge.in/latest/810 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/811 
## Scraped page https://thebridge.in/latest/811 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/812 
## Scraped page https://thebridge.in/latest/812 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/813 
## Scraped page https://thebridge.in/latest/813 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/814 
## Scraped page https://thebridge.in/latest/814 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/815 
## Scraped page https://thebridge.in/latest/815 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/816 
## Scraped page https://thebridge.in/latest/816 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/817 
## Scraped page https://thebridge.in/latest/817 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/818 
## Scraped page https://thebridge.in/latest/818 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/819 
## Scraped page https://thebridge.in/latest/819 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/820 
## Scraped page https://thebridge.in/latest/820 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/821 
## Scraped page https://thebridge.in/latest/821 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/822 
## Scraped page https://thebridge.in/latest/822 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/823 
## Scraped page https://thebridge.in/latest/823 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/824 
## Scraped page https://thebridge.in/latest/824 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/825 
## Scraped page https://thebridge.in/latest/825 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/826 
## Scraped page https://thebridge.in/latest/826 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/827 
## Scraped page https://thebridge.in/latest/827 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/828 
## Scraped page https://thebridge.in/latest/828 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/829 
## Scraped page https://thebridge.in/latest/829 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/830 
## Scraped page https://thebridge.in/latest/830 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/831 
## Scraped page https://thebridge.in/latest/831 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/832 
## Scraped page https://thebridge.in/latest/832 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/833 
## Scraped page https://thebridge.in/latest/833 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/834 
## Scraped page https://thebridge.in/latest/834 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/835 
## Scraped page https://thebridge.in/latest/835 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/836 
## Scraped page https://thebridge.in/latest/836 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/837 
## Scraped page https://thebridge.in/latest/837 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/838 
## Scraped page https://thebridge.in/latest/838 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/839 
## Scraped page https://thebridge.in/latest/839 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/840 
## Scraped page https://thebridge.in/latest/840 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/841 
## Scraped page https://thebridge.in/latest/841 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/842 
## Scraped page https://thebridge.in/latest/842 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/843 
## Scraped page https://thebridge.in/latest/843 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/844 
## Scraped page https://thebridge.in/latest/844 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/845 
## Scraped page https://thebridge.in/latest/845 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/846 
## Scraped page https://thebridge.in/latest/846 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/847 
## Scraped page https://thebridge.in/latest/847 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/848 
## Scraped page https://thebridge.in/latest/848 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/849 
## Scraped page https://thebridge.in/latest/849 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/850 
## Scraped page https://thebridge.in/latest/850 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/851 
## Scraped page https://thebridge.in/latest/851 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/852 
## Scraped page https://thebridge.in/latest/852 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/853 
## Scraped page https://thebridge.in/latest/853 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/854 
## Scraped page https://thebridge.in/latest/854 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/855 
## Scraped page https://thebridge.in/latest/855 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/856 
## Scraped page https://thebridge.in/latest/856 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/857 
## Scraped page https://thebridge.in/latest/857 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/858 
## Scraped page https://thebridge.in/latest/858 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/859 
## Scraped page https://thebridge.in/latest/859 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/860 
## Scraped page https://thebridge.in/latest/860 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/861 
## Scraped page https://thebridge.in/latest/861 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/862 
## Scraped page https://thebridge.in/latest/862 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/863 
## Scraped page https://thebridge.in/latest/863 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/864 
## Scraped page https://thebridge.in/latest/864 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/865 
## Scraped page https://thebridge.in/latest/865 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/866 
## Scraped page https://thebridge.in/latest/866 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/867 
## Scraped page https://thebridge.in/latest/867 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/868 
## Scraped page https://thebridge.in/latest/868 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/869 
## Scraped page https://thebridge.in/latest/869 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/870 
## Scraped page https://thebridge.in/latest/870 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/871 
## Scraped page https://thebridge.in/latest/871 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/872 
## Scraped page https://thebridge.in/latest/872 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/873 
## Scraped page https://thebridge.in/latest/873 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/874 
## Scraped page https://thebridge.in/latest/874 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/875 
## Scraped page https://thebridge.in/latest/875 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/876 
## Scraped page https://thebridge.in/latest/876 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/877 
## Scraped page https://thebridge.in/latest/877 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/878 
## Scraped page https://thebridge.in/latest/878 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/879 
## Scraped page https://thebridge.in/latest/879 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/880 
## Scraped page https://thebridge.in/latest/880 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/881 
## Scraped page https://thebridge.in/latest/881 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/882 
## Scraped page https://thebridge.in/latest/882 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/883 
## Scraped page https://thebridge.in/latest/883 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/884 
## Scraped page https://thebridge.in/latest/884 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/885 
## Scraped page https://thebridge.in/latest/885 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/886 
## Scraped page https://thebridge.in/latest/886 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/887 
## Scraped page https://thebridge.in/latest/887 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/888 
## Scraped page https://thebridge.in/latest/888 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/889 
## Scraped page https://thebridge.in/latest/889 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/890 
## Scraped page https://thebridge.in/latest/890 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/891 
## Scraped page https://thebridge.in/latest/891 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/892 
## Scraped page https://thebridge.in/latest/892 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/893 
## Scraped page https://thebridge.in/latest/893 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/894 
## Scraped page https://thebridge.in/latest/894 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/895 
## Scraped page https://thebridge.in/latest/895 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/896 
## Scraped page https://thebridge.in/latest/896 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/897 
## Scraped page https://thebridge.in/latest/897 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/898 
## Scraped page https://thebridge.in/latest/898 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/899 
## Scraped page https://thebridge.in/latest/899 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/900 
## Scraped page https://thebridge.in/latest/900 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/901 
## Scraped page https://thebridge.in/latest/901 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/902 
## Scraped page https://thebridge.in/latest/902 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/903 
## Scraped page https://thebridge.in/latest/903 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/904 
## Scraped page https://thebridge.in/latest/904 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/905 
## Scraped page https://thebridge.in/latest/905 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/906 
## Scraped page https://thebridge.in/latest/906 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/907 
## Scraped page https://thebridge.in/latest/907 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/908 
## Scraped page https://thebridge.in/latest/908 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/909 
## Scraped page https://thebridge.in/latest/909 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/910 
## Scraped page https://thebridge.in/latest/910 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/911 
## Scraped page https://thebridge.in/latest/911 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/912 
## Scraped page https://thebridge.in/latest/912 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/913 
## Scraped page https://thebridge.in/latest/913 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/914 
## Scraped page https://thebridge.in/latest/914 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/915 
## Scraped page https://thebridge.in/latest/915 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/916 
## Scraped page https://thebridge.in/latest/916 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/917 
## Scraped page https://thebridge.in/latest/917 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/918 
## Scraped page https://thebridge.in/latest/918 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/919 
## Scraped page https://thebridge.in/latest/919 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/920 
## Scraped page https://thebridge.in/latest/920 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/921 
## Scraped page https://thebridge.in/latest/921 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/922 
## Scraped page https://thebridge.in/latest/922 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/923 
## Scraped page https://thebridge.in/latest/923 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/924 
## Scraped page https://thebridge.in/latest/924 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/925 
## Scraped page https://thebridge.in/latest/925 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/926 
## Scraped page https://thebridge.in/latest/926 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/927 
## Scraped page https://thebridge.in/latest/927 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/928 
## Scraped page https://thebridge.in/latest/928 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/929 
## Scraped page https://thebridge.in/latest/929 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/930 
## Scraped page https://thebridge.in/latest/930 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/931 
## Scraped page https://thebridge.in/latest/931 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/932 
## Scraped page https://thebridge.in/latest/932 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/933 
## Scraped page https://thebridge.in/latest/933 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/934 
## Scraped page https://thebridge.in/latest/934 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/935 
## Scraped page https://thebridge.in/latest/935 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/936 
## Scraped page https://thebridge.in/latest/936 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/937 
## Scraped page https://thebridge.in/latest/937 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/938 
## Scraped page https://thebridge.in/latest/938 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/939 
## Scraped page https://thebridge.in/latest/939 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/940 
## Scraped page https://thebridge.in/latest/940 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/941 
## Scraped page https://thebridge.in/latest/941 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/942 
## Scraped page https://thebridge.in/latest/942 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/943 
## Scraped page https://thebridge.in/latest/943 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/944 
## Scraped page https://thebridge.in/latest/944 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/945 
## Scraped page https://thebridge.in/latest/945 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/946 
## Scraped page https://thebridge.in/latest/946 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/947 
## Scraped page https://thebridge.in/latest/947 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/948 
## Scraped page https://thebridge.in/latest/948 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/949 
## Scraped page https://thebridge.in/latest/949 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/950 
## Scraped page https://thebridge.in/latest/950 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/951 
## Scraped page https://thebridge.in/latest/951 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/952 
## Scraped page https://thebridge.in/latest/952 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/953 
## Scraped page https://thebridge.in/latest/953 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/954 
## Scraped page https://thebridge.in/latest/954 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/955 
## Scraped page https://thebridge.in/latest/955 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/956 
## Scraped page https://thebridge.in/latest/956 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/957 
## Scraped page https://thebridge.in/latest/957 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/958 
## Scraped page https://thebridge.in/latest/958 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/959 
## Scraped page https://thebridge.in/latest/959 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/960 
## Scraped page https://thebridge.in/latest/960 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/961 
## Scraped page https://thebridge.in/latest/961 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/962 
## Scraped page https://thebridge.in/latest/962 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/963 
## Scraped page https://thebridge.in/latest/963 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/964 
## Scraped page https://thebridge.in/latest/964 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/965 
## Scraped page https://thebridge.in/latest/965 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/966 
## Scraped page https://thebridge.in/latest/966 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/967 
## Scraped page https://thebridge.in/latest/967 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/968 
## Scraped page https://thebridge.in/latest/968 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/969 
## Scraped page https://thebridge.in/latest/969 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/970 
## Scraped page https://thebridge.in/latest/970 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/971 
## Scraped page https://thebridge.in/latest/971 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/972 
## Scraped page https://thebridge.in/latest/972 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/973 
## Scraped page https://thebridge.in/latest/973 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/974 
## Scraped page https://thebridge.in/latest/974 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/975 
## Scraped page https://thebridge.in/latest/975 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/976 
## Scraped page https://thebridge.in/latest/976 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/977 
## Scraped page https://thebridge.in/latest/977 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/978 
## Scraped page https://thebridge.in/latest/978 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/979 
## Scraped page https://thebridge.in/latest/979 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/980 
## Scraped page https://thebridge.in/latest/980 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/981 
## Scraped page https://thebridge.in/latest/981 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/982 
## Scraped page https://thebridge.in/latest/982 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/983 
## Scraped page https://thebridge.in/latest/983 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/984 
## Scraped page https://thebridge.in/latest/984 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/985 
## Scraped page https://thebridge.in/latest/985 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/986 
## Scraped page https://thebridge.in/latest/986 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/987 
## Scraped page https://thebridge.in/latest/987 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/988 
## Scraped page https://thebridge.in/latest/988 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/989 
## Scraped page https://thebridge.in/latest/989 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/990 
## Scraped page https://thebridge.in/latest/990 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/991 
## Scraped page https://thebridge.in/latest/991 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/992 
## Scraped page https://thebridge.in/latest/992 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/993 
## Scraped page https://thebridge.in/latest/993 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/994 
## Scraped page https://thebridge.in/latest/994 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/995 
## Scraped page https://thebridge.in/latest/995 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/996 
## Scraped page https://thebridge.in/latest/996 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/997 
## Scraped page https://thebridge.in/latest/997 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/998 
## Scraped page https://thebridge.in/latest/998 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/999 
## Scraped page https://thebridge.in/latest/999 with 12 headlines.
## Scraping URL: https://thebridge.in/latest/1000 
## Scraped page https://thebridge.in/latest/1000 with 12 headlines.
bridge_headlines_df <- data.frame(headline = all_headlines)

CREATING A FUNCTION FOR AUTOMATION OF ANALYSIS

process_headlines_full <- function(df, text_col, lexicon) {
  library(tidyverse)
  library(tidytext)
  library(rvest)
  library(wordcloud)
  library(wordcloud2)
  library(RColorBrewer)
  library(igraph)
  library(ggraph)
  library(networkD3)
  library(treemapify)
  library(reshape2)
  
  df <- df %>% 
    rename(title = {{ text_col }}) %>%
    mutate(title = tolower(title))
  
  tidy_df <- df %>%
    unnest_tokens(word, title) %>%
    anti_join(stop_words, by = "word") %>%
    filter(nchar(word) > 1) %>%
    mutate(word = gsub("[[:punct:]]", "", word))
  
  word_freq <- tidy_df %>% 
    count(word, sort = TRUE)
  
  bigrams <- df %>% 
    unnest_tokens(bigram, title, token = "ngrams", n = 2) %>%
    count(bigram, sort = TRUE)
  
  trigrams <- df %>% 
    unnest_tokens(trigram, title, token = "ngrams", n = 3) %>%
    count(trigram, sort = TRUE)
  
  quadgrams <- df %>% 
    unnest_tokens(quadgram, title, token = "ngrams", n = 4) %>%
    count(quadgram, sort = TRUE)
  
  pentagrams <- df %>% 
    unnest_tokens(pentagram, title, token = "ngrams", n = 5) %>%
    count(pentagram, sort = TRUE)
  
  hexagrams <- df %>% 
    unnest_tokens(hexagram, title, token = "ngrams", n = 6) %>%
    count(hexagram, sort = TRUE)
  
    wordcloud(words = word_freq$word, 
            freq = word_freq$n, 
            min.freq = 2, 
            max.words = 100, 
            random.order = FALSE, 
            rot.per = 0.3, 
            colors = brewer.pal(8, "Dark2"))
  
 unigram_bar <- ggplot(word_freq %>% slice_max(n, n = 15), 
                        aes(x = reorder(word, n), y = n)) +
    geom_col(fill = "steelblue") +
    coord_flip() +
    labs(title = "Top Words in Headlines", x = "Words", y = "Frequency") +
    theme_minimal()
  
  wordcloud2::wordcloud2(bigrams %>% filter(n > 5), size = 0.5)
  
  plot_ngrams <- function(ngram_df, title_text) {
    ngram_df %>% 
      as_tibble() %>%  
      arrange(desc(n)) %>%  
      head(20) %>%  
      ggplot(aes(x = reorder(!!sym(names(ngram_df)[1]), n), y = n)) +  
      geom_col(fill = "steelblue") +
      coord_flip() +
      labs(title = title_text, x = "N-Gram", y = "Frequency") +
      theme_minimal()
  }
  
  trigram_bar <- plot_ngrams(trigrams, "Top 20 Trigrams")
  quadgram_bar <- plot_ngrams(quadgrams, "Top 20 Quadgrams")
  
  create_sankey <- function(ngram_df, n_parts) {
    splits <- paste0("word", 1:n_parts)
    ngram_split <- ngram_df %>%
      separate(col = !!sym(names(ngram_df)[1]), into = splits, sep = " ", remove = FALSE) %>%
      filter(!is.na(.[[2]]))
    
    links_list <- list()
    for(i in 1:(n_parts-1)) {
      links_list[[i]] <- ngram_split %>% 
        transmute(source = .[[splits[i]]],
                  target = .[[splits[i+1]]],
                  value = n)
    }
    links_df <- bind_rows(links_list)
    nodes_df <- data.frame(name = unique(c(links_df$source, links_df$target)))
    links_df <- links_df %>%
      mutate(source = match(source, nodes_df$name) - 1,
             target = match(target, nodes_df$name) - 1)
    
    sankeyNetwork(Links = links_df, Nodes = nodes_df, Source = "source", 
                  Target = "target", Value = "value", NodeID = "name", 
                  fontSize = 12, nodeWidth = 30)
  }
  
  trigram_sankey <- create_sankey(trigrams, 3)
  quadgram_sankey <- create_sankey(quadgrams, 4)
  
  pentagram_graph <- function(penta_df) {
    penta_split <- penta_df %>%
      separate(pentagram, into = c("w1", "w2", "w3", "w4", "w5"), sep = " ", remove = FALSE) %>%
      filter(!is.na(w2))
    g <- graph_from_data_frame(penta_split, directed = FALSE)
    ggraph(g, layout = "fr") +
      geom_edge_link(aes(edge_alpha = n), show.legend = FALSE) +
      geom_node_point(color = "blue", size = 3) +
      geom_node_text(aes(label = name), repel = TRUE, size = 3) +
      theme_minimal()
  }
  
  pentagram_network <- pentagram_graph(pentagrams)
  
  hexagram_treemap <- ggplot(hexagrams, aes(area = n, fill = n, label = hexagram)) +
    geom_treemap() +
    geom_treemap_text(colour = "white", place = "centre") +
    scale_fill_viridis_c() +
    labs(title = "Hexagram Treemap") +
    theme_minimal()
  
  emotions <- tidy_df %>%
    inner_join(lexicon, by = "word") %>%
    group_by(id = row_number()) %>%
    summarize(across(Positive:Trust, sum, na.rm = TRUE))
  
  df_emotions <- df %>%
    mutate(id = row_number()) %>%
    left_join(emotions, by = "id")
  
  mean_emotions <- df_emotions %>%
    summarize(across(Positive:Trust, mean, na.rm = TRUE))
  
  emotion_bar <- ggplot(mean_emotions %>% pivot_longer(cols = everything(), names_to = "Emotion", values_to = "Mean"), 
                          aes(x = reorder(Emotion, -Mean), y = Mean, fill = Emotion)) +
    geom_bar(stat = "identity") +
    theme_minimal() +
    labs(title = "Mean Emotion Scores", x = "Emotion", y = "Mean Score") +
    theme(axis.text.x = element_text(angle = 45, hjust = 1))
  
  df_emotions_filtered <- df_emotions %>%
  filter(rowSums(select(., Positive:Trust) != 0) > 0)

emotion_heat_data <- as.matrix(df_emotions_filtered %>% select(Positive:Trust))

heatmap(emotion_heat_data, 
        scale = "column", 
        col = heat.colors(256), 
        margins = c(5, 10), 
        xlab = "Emotion", 
        ylab = "Headline",
        main = "Emotion Heatmap of Headlines")
  
  return(list(
    word_freq_table = word_freq,
    bigrams_table = bigrams,
    trigrams_table = trigrams,
    quadgrams_table = quadgrams,
    pentagrams_table = pentagrams,
    hexagrams_table = hexagrams,
    mean_emotion_table = mean_emotions,
    unigram_bar_plot = unigram_bar,
    trigram_bar_plot = trigram_bar,
    quadgram_bar_plot = quadgram_bar,
    trigram_sankey = trigram_sankey,
    quadgram_sankey = quadgram_sankey,
    pentagram_network = pentagram_network,
    hexagram_treemap = hexagram_treemap,
    emotion_bar_chart = emotion_bar
  ))
}

RUNNING THE ANALYSIS FUNCTION ON ‘THE BRIDGE’ DATASET

bridge_headlines_df <- read_csv("bridge_headlines.csv")
## Rows: 12000 Columns: 1
## ── Column specification ──────────────────────────────────────────────────────────
## Delimiter: ","
## chr (1): headline
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
bridge_results <- process_headlines_full(bridge_headlines_df, headline, nrc_cleaned)

## Links is a tbl_df. Converting to a plain data frame.
## Links is a tbl_df. Converting to a plain data frame.

head(bridge_results$word_freq_table,60)
## # A tibble: 60 × 2
##    word       n
##    <chr>  <int>
##  1 india   1798
##  2 indian  1553
##  3 world   1311
##  4 cup     1149
##  5 asian   1085
##  6 2024    1011
##  7 womens   911
##  8 games    898
##  9 team     869
## 10 fc       841
## # ℹ 50 more rows
head(bridge_results$bigrams_table)
## # A tibble: 6 × 2
##   bigram            n
##   <chr>         <int>
## 1 asian games     546
## 2 world cup       453
## 3 olympics 2024   272
## 4 set to          206
## 5 satwik chirag   198
## 6 in the          190
head(bridge_results$trigrams_table)
## # A tibble: 6 × 2
##   trigram                    n
##   <chr>                  <int>
## 1 asian games 2023         117
## 2 fih pro league           100
## 3 mumbai city fc            82
## 4 hockey world cup          70
## 5 asian champions trophy    66
## 6 t20 world cup             64
head(bridge_results$quadgrams_table)
## # A tibble: 6 × 2
##   quadgram                       n
##   <chr>                      <int>
## 1 women's t20 world cup         49
## 2 indian men's hockey team      48
## 3 indians in action on          41
## 4 indian women's hockey team    37
## 5 fih pro league india          35
## 6 khelo india para games        33
head(bridge_results$pentagrams_table)
## # A tibble: 6 × 2
##   pentagram                          n
##   <chr>                          <int>
## 1 2024 indians in action on         24
## 2 at asian games 2023 full          21
## 3 asian games 2023 full team        19
## 4 games 2023 full team schedule     19
## 5 indians in action on september    18
## 6 2023 indians in action on         17
head(bridge_results$hexagrams_table)
## # A tibble: 6 × 2
##   hexagram                                n
##   <chr>                               <int>
## 1 <NA>                                   38
## 2 asian games 2023 full team schedule    19
## 3 at asian games 2023 full team          19
## 4 asian games 2023 indians in action     17
## 5 games 2023 indians in action on        17
## 6 games 2023 full team schedule medal    14
bridge_results$mean_emotion_table
## # A tibble: 1 × 10
##   Positive Negative  Anger Anticipation Disgust   Fear    Joy Sadness Surprise
##      <dbl>    <dbl>  <dbl>        <dbl>   <dbl>  <dbl>  <dbl>   <dbl>    <dbl>
## 1    0.225    0.110 0.0608        0.118  0.0188 0.0746 0.0888  0.0455   0.0635
## # ℹ 1 more variable: Trust <dbl>
print(bridge_results$unigram_bar_plot)

print(bridge_results$trigram_bar_plot)

print(bridge_results$quadgram_bar_plot)

print(bridge_results$emotion_bar_chart)

‘India’, ‘Asian’ and ‘World’ are the most common words in this dataset, suggesting the importance of geographical entities in sports news. ‘Team’ (869 instances), Win (632 instances) and Gold (384 instances) are some common words which are not geographical entities or names of tournaments.

The most common n-grams are names of tournaments which also act as SEO keywords - ‘Olympics 2024’, ‘Asian Games’, ‘World Cup’, ‘FIH Pro League’. The one exception to this is ‘Satwik Chirag’, the name of a badminton doubles pair which appears 198 times in the 1200 headlines. The only names of people which appear more in this set of headlines are ‘Sindhu’ (234 times), Lakshya (211 times) and Singh (275 times), the last being a surname which could be associated with several people. The four badminton players Satwik, Chirag, Sindhu and Lakshya, therefore, can be said to be the equivalent of US Presidential candidates from the fake news dataset, though none of them have as much of a lead over the others as Trump did over his rivals.

Emotion and sentiment scores: The positive sentiment (0.22) is present in this dataset far more than the negative sentiment (0.11). Trust (0.14) and anticipation (0.12) are the most common emotions. Disgust (0.02) and Sadness (0.05) are the least common emotions.

Heatmap: Joy, anticipation and trust are the most commonly co-occurring emotions in particular headlines, and these headlines have a positive sentiment (Eg - Indian women’s hockey squad for Junior Asia Cup announced). Sadness and anger are two co-occurring emotions on the other end of the heatmap, and these have a negative sentiment (Eg - Kush Maini completes another successful Formula 1 test, inches closer to the Indian F1 dream). In this dataset, the positive sentiment is the most independently occurring, which means that there are many headlines here which are positive but do not have scores for any of the 8 emotions (Eg - India edge-out China to defend Asian Champions Trophy).

THREE-WORD PHRASES

top_connections <- bridge_results$trigram_sankey$x$links %>%
  dplyr::arrange(desc(value)) %>%
  head(100)
bridge_results$trigram_sankey$x$links <- top_connections
links <- bridge_results$trigram_sankey$x$links
unique_nodes <- unique(c(links$source, links$target))
node_names <- bridge_results$trigram_sankey$x$nodes$name
links$source_word <- node_names[links$source + 1]  
links$target_word <- node_names[links$target + 1]  

plot <- plot_ly(
  type = "sankey",
  node = list(
    pad = 15,
    thickness = 20,
    line = list(color = "black", width = 0.5),
    label = node_names  # Use words as node labels
  ),
  link = list(
    source = match(links$source_word, node_names) - 1,  # Use the words' indices in node_names
    target = match(links$target_word, node_names) - 1,  # Use the words' indices in node_names
    value = links$value
  )
)

plot

FOUR-WORD PHRASES

top_quadgram_connections <- bridge_results$quadgram_sankey$x$links %>%
  dplyr::arrange(desc(value)) %>%
  head(100)
bridge_results$quadgram_sankey$x$links <- top_quadgram_connections
links_quadgram <- bridge_results$quadgram_sankey$x$links
node_names_quadgram <- bridge_results$quadgram_sankey$x$nodes$name
links_quadgram$source_word <- node_names_quadgram[links_quadgram$source + 1]  
links_quadgram$target_word <- node_names_quadgram[links_quadgram$target + 1]  

plot_quadgram <- plot_ly(
  type = "sankey",
  node = list(
    pad = 15,
    thickness = 20,
    line = list(color = "black", width = 0.5),
    label = node_names_quadgram  
  ),
  link = list(
    source = match(links_quadgram$source_word, node_names_quadgram) - 1,  
    target = match(links_quadgram$target_word, node_names_quadgram) - 1,  
    value = links_quadgram$value
  )
)

plot_quadgram

The above Sankey diagrams show the mapping between words in common phrases. Most of the words mapped here are part of tournament names or federation names. The one exception is Rohan Bopanna-Matthew Ebden, a tennis doubles duo.

This dataset contains 73,158 unique pentagrams and 81,970 unique hexagrams, but none of them have a frequency count of more than 1.